Description
Used to specify the 3D only and DGPS only settings for the GPS quality control settings in ArcPadPrefs.apx.
Diagram
Overview
|
MODE
Used to specify the 3D only and DGPS only settings for the GPS quality control settings in ArcPadPrefs.apx.
|
threed optional Restriction of xs:string
Flag to determine if the 3D only setting is applied.
|
|
dgps optional Restriction of xs:string
Flag to determine if the DGPS only setting is applied.
|
|
pps optional Restriction of xs:string
Flag to determine if the PPS setting is applied.
|
|
rtkfixed optional Restriction of xs:string
Flag to determine if the RTK Fixed setting is applied.
|
|
rtkfloatorfixed optional Restriction of xs:string
Flag to determine if the RTK Float or Fixed setting is applied.
|
|
Attributes
Name | Type | Use | Default | Fixed | Description |
threed | Restriction of xs:string | optional | false | | Flag to determine if the 3D only setting is applied. |
dgps | Restriction of xs:string | optional | false | | Flag to determine if the DGPS only setting is applied. |
pps | Restriction of xs:string | optional | false | | Flag to determine if the PPS setting is applied. |
rtkfixed | Restriction of xs:string | optional | false | | Flag to determine if the RTK Fixed setting is applied. |
rtkfloatorfixed | Restriction of xs:string | optional | false | | Flag to determine if the RTK Float or Fixed setting is applied. |
Examples
Source
<xs:element name="MODE" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Used to specify the 3D only and DGPS only settings for the GPS quality control settings in ArcPadPrefs.apx.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute default="false" name="threed">
<xs:annotation>
<xs:documentation>Flag to determine if the 3D only setting is applied.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="true" />
<xs:enumeration value="false" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute default="false" name="dgps">
<xs:annotation>
<xs:documentation>Flag to determine if the DGPS only setting is applied.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="true" />
<xs:enumeration value="false" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute default="false" name="pps">
<xs:annotation>
<xs:documentation>Flag to determine if the PPS setting is applied.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="true" />
<xs:enumeration value="false" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute default="false" name="rtkfixed">
<xs:annotation>
<xs:documentation>Flag to determine if the RTK Fixed setting is applied.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="true" />
<xs:enumeration value="false" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute default="false" name="rtkfloatorfixed">
<xs:annotation>
<xs:documentation>Flag to determine if the RTK Float or Fixed setting is applied.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="true" />
<xs:enumeration value="false" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
|
See Also